home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / math / tsbits18.zip / TSBITS.INF < prev    next >
Text File  |  1996-03-02  |  5KB  |  103 lines

  1.                            - 1 -
  2. Sat 2-March-1996
  3.  
  4. About TSBITS in General                         All rights reserved
  5. =======================
  6.  
  7. Apply question mark ? with the program calls for brief descriptions.
  8.  
  9. This package may be used and distributed freely for  NON-COMMERCIAL,
  10. NON-INSTITUTIONAL,  PRIVATE  purposes, provided it is not changed in
  11. any way. (Repacking with another method  is  ok,  though.)  For  ANY
  12. other  usage,  such as use in a business enterprise or a university,
  13. contact the author for registration. Uploading to bulletin boards is
  14. encouraged.  Please  do  not  distribute  any  part  of this package
  15. separately.
  16.  
  17. The programs are under development. If you have any comments or  bug
  18. reports,   please  do  not  hesitate  to  use  electronic  mail  for
  19. communication.
  20.  
  21. The author shall not be liable to the user for any direct,  indirect
  22. or  consequential loss arising from the use of, or inability to use,
  23. any program or file howsoever caused. No warranty is given that  the
  24. programs will work under all circumstances.
  25.  
  26. Timo Salmi (email: ts@uwasa.fi WWW: http://uwasa.fi/~ts/)
  27. Professor of Accounting and Business Finance
  28. Faculty of Accounting & Industrial Management
  29. University of Vaasa
  30. P.O. BOX 700, FIN-65101 Vaasa, Finland
  31.  
  32.  
  33.  
  34.                            - 2 -
  35.  
  36. Timo Salmi BITS release 1.8 (TSBITS18) includes the following
  37. mathematical programs and information files:
  38.  
  39. TSBITS18        Bits and conversions by T.Salmi
  40. Filename        Comment
  41. --------        --------------------------------
  42. BINTODEC.EXE    Binary to decimal
  43. BITWISE.EXE     Binary operations with 10-base
  44. COMDIV.EXE      Largest common divisor
  45. CONVBASE.EXE    Conversion between number bases
  46. DECTOBIN.EXE    Decimal to binary
  47. DECTOHEX.EXE    Decimal to hexadecimal
  48. FACTORS.EXE     Factors etc. of integers
  49. FILE_ID.DIZ     Brief characterization of tsbits
  50. HEXTODEC.EXE    Hexadecimal to decimal
  51. TSBITS.INF      Document and a readme
  52. TSBITS.NWS      News announcements about tsbits
  53. TSPROG.INF      List of programs from Timo Salmi
  54. VAASA.INF       Info: Finland, Vaasa, U of Vaasa
  55. ----            ------             ------  -----
  56. 0013
  57.  
  58. If you have an earlier than 1.2 version of TSBITS, please note that
  59. the .exe files replace the earlier .com files with the same name.
  60. (If you have an .exe and a .com file with the same name on the same
  61. directory, the outdated .com file is executed.) The .exe versions
  62. have been compiled with Turbo Pascal 4.0 and 5.0 (later with 7.0),
  63. and the range of integers that BITWISE and FACTORS can handle was
  64. been greatly extended. Note that while (some) .com programs can be
  65. aborted by pressing ctrl+c, .exe programs can be halted with
  66. ctrl+break.
  67.  
  68. BITWISE.EXE (Ver 2.3a)
  69. Performs bit operations on decimal integers giving the results both
  70. in binary and decimal.
  71.  Release notes. Version 2.3: Line editing and input recall now possible.
  72.  
  73. CONVBASE.EXE (Ver 2.5a)
  74. Converts (also large, that is longint) non-negative integer values
  75. from one base to another. The base can be from 2 to 32. The
  76. converted values are spaced (since version 2.2) for better
  77. readability. The spacing depends on the base.
  78.  Release notes: Version 2.5: The default base which is given by
  79. pressing the enter (return) key is now changed every time a new base
  80. is entered. This makes repeated operations much more convenient. -
  81. The acceptable bases have been extended from 32 to 36. - In entering
  82. the value to be converted, input recall and line editing is now
  83. available. Enter ? at the VALUE query for the help on the available
  84. keys. - The check for illegal digits did not catch the ascii
  85. characters from : to >. This has been remedied.
  86.  
  87. FACTORS.EXE (Ver 2.3a)
  88. Optionally finds factors of integers, largest common divisors, and
  89. smallest common dividees. Be warned that finding the factors of the
  90. new (since 1.2) large integers (such as 999999999) takes quite
  91. awhile. If you wonder what this means, it is simply that this
  92. program was originally a Turbo Pascal 3.02A program (and a QL
  93. Computer One pascal program even before that). Turbo Pascal 3
  94. integers were limited to an upper bound of 32767, and it was version
  95. 4.0 that introduced long integers into Turbo Pascal.
  96.  
  97. BINTODEC.EXE, DECTOBIN.EXE, DECTOHEX.EXE, HEXTODEC.EXE.
  98. The command-like programs can be used instead of CONVBASE for the
  99. most common conversions. Usage e.g. BINTODEC BinaryValue.
  100.  
  101. COMDIV (Ver. 1.02)
  102. Calculates the largest common divisor of two integers.
  103.